home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
OS2
/
XL21HOS2.ZIP
/
FACT.LSP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Lisp/Scheme
|
1995-12-27
|
205 b
|
8 lines
(defun fact (n)
(cond ((zerop n) 1)
((= n 1) 1)
(t (* n (fact (- n 1))))))
(defun facti (n &aux (v 1)) ;; Iterative version
(dotimes (i n) (setq v (* v (1+ i))))
v)